.container_main-gauche {
    width: 938px;
    height: 100%;
    box-sizing: border-box;
    background-color: #D34B34;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: var(--transitionContainer);
    padding: 44px 30px 0 30px;
}
.container_main-gauche.bigger {
    width: 1227px;
}

.header-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
}
.header-content {
    display: flex;
    align-items: center;
}
.header-logo {
    width: 287px;
    height: 100px;
}
.header-trait {
    margin-left: 2px;
    margin-right: 18px;
    background-color: white;
    width: 15px;
    height: 88px;
}
.header-date_heure {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-transform: uppercase;
    font-family: 'Hansief Rough';
    font-size: 33px;
    color: white;
}

.header-espace {
    flex-grow: 1;
}

.header-favoris {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'OpenSans-SemiBold';
    font-size: 20px;
    text-transform: uppercase;
    color: white;
}
.header-favoris img.poke {
    animation: poke 400ms linear;
}
.header-favoris > div {
    margin-top: 8px;
}

.selection_langue-container {
    margin-right: 26px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'OpenSans-SemiBold';
    font-size: 20px;
    text-transform: uppercase;
    color: white;
}
.selection_langue-container > img {
    height: 31px;
}
.selection_langue-container > div {
    margin-top: 8px;
}


.affiche-gauche-container {
    flex-shrink: 0;
    margin-top: 48px;
    width: 876px;
    height: 784px;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(1, 1fr);
    transition: var(--transitionContainer);
}
.container_main-gauche.bigger .affiche-gauche-container {
    width: 1165px;
    height: 856px;
}
.content-gauche-content {
    position: relative;
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    transition: var(--transitionContainer);
    overflow: hidden;
    border-radius: 4px;
    opacity: 0;
    pointer-events: none;
    box-shadow: 2px 3px 2px #00000029;
}
.content-gauche-content.active {
    pointer-events: all;
    opacity: 1;
}

.map-zoom-container {
    position: absolute;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    z-index: 2;
}

.map-zoom-container img:first-child {
    margin-bottom: 8px;
}


.affiche-sous_rubrique {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding: 86px 60px;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.affiche-sous_rubrique-titre {
    font-size: 101px;
    color: white;
    font-family: 'Hansief Rough';
    text-transform: uppercase;
}


.container_main-gauche-footer {
    margin-top: 16px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    transition: var(--transitionContainer);
}
.container_main-gauche.bigger .container_main-gauche-footer {
    margin-top: 50px;
}
.mentions_legales {
    width: 202px;
    height: 56px;
    background-color: #1C1C1C;
    border-radius: 4px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: 'Roboto-Light';
    font-size: 20px;
}
.btn-avis {
    position: relative;
    left: 0;
    bottom: 0;
    height: 56px;
    border-radius: 4px;
    color: #1C1C1C;
    background-color: #FCBE00;
    text-transform: uppercase;
    font-family: 'Hansief Rough';
    font-size: 25px;
}
.btn-avis.active {
    border-radius: 0 0 4px 4px;
}
.btn-avis-content {
    width: 100%;
    position: absolute;
    bottom: 100%;
    border-radius: 4px 4px 0 0;
    background-color: #FCBE00;
    height: 0;
    overflow: hidden;
    transition: var(--transitionContainer);
}
.btn-avis.active .btn-avis-content {
    height: 289px;
}
.btn-avis-qr {
    width: 100%;
    height: 289px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.btn-avis-qr img {
    width: 197px;
    height: 197px;
}
.btn-avis-texte {
    padding: 0 22px 0 20px;
    height: 56px;
    display: flex;
    align-items: center;
}
